C# |
---|
public String GetHTMLEnd(TextState textState) |
C# |
---|
// Root Method Begin var textState = new TextState(); // Defaults: IndentCharCount = 2, LineLimit = 80, WrapEnabled = false. var hb = new HTMLBuilder(textState); // Example Method: var result = hb.GetHTMLEnd(textState); // result: // </body> // </html> |